Akhdefo Plot¶
Plot North-South Annual Velocity in mm/year
[5]:
from akhdefo_functions import MeanProducts_plot_ts
MeanProducts_plot_ts(path_to_shapefile="stack_data/TS/TS_NS_20220812_to_20221016_velocity.shp",
dem_path="data/dem_aoi.tif" , color_field="VEL",
Set_fig_MinMax=False, MinMaxRange=[-100,100],
opacity=0.9, cmap='RdYlBu_r', point_size=0.5,
cbar_label="mm/year", batch_plot=False, dates_list='Names.txt' , out_folder="Figs_analysis/NS")
Plot East-West Annual Velocity in mm/year
[6]:
from akhdefo_functions import MeanProducts_plot_ts
MeanProducts_plot_ts(path_to_shapefile="stack_data/TS/TS_EW_20220812_to_20221016_velocity.shp",
dem_path="data/dem_aoi.tif" , color_field="VEL",
Set_fig_MinMax=False, MinMaxRange=[-100,100],
opacity=0.9, cmap='RdYlBu_r', point_size=0.5,
cbar_label="mm/year", batch_plot=False, dates_list='Names.txt' , out_folder="Figs_analysis/EW")
Plot 2D Annual Velocity and Direction
[7]:
from akhdefo_functions import MeanProducts_plot_ts
#2D Velocity
MeanProducts_plot_ts(path_to_shapefile="stack_data/TS/TS_2D_20220812_to_20221016_velocity_mean.shp",
dem_path="data/dem_aoi.tif" , color_field="VEL_2D",
Set_fig_MinMax=False, MinMaxRange=[-100,100],
opacity=0.9, cmap='RdYlBu_r', point_size=0.5,
cbar_label="mm/year", batch_plot=False, dates_list='Names.txt' , out_folder="Figs_analysis/2D")
#Direction
from akhdefo_functions import MeanProducts_plot_ts
MeanProducts_plot_ts(path_to_shapefile="stack_data/TS/TS_2D_20220812_to_20221016_velocity_mean.shp",
dem_path="data/dem_aoi.tif" , color_field="VEL_2DDir",
Set_fig_MinMax=False, MinMaxRange=[-100,100],
opacity=0.9, cmap='hsv', point_size=0.5,
cbar_label="degree", batch_plot=False, dates_list='Names.txt' , out_folder="Figs_analysis/2D")
Plot North-South Temporal Deformation¶
[9]:
from akhdefo_functions import MeanProducts_plot_ts
MeanProducts_plot_ts(path_to_shapefile="stack_data/TS/TS_NS_20220812_to_20221016_velocity.shp",
dem_path="data/dem_aoi.tif" , color_field="VEL",
Set_fig_MinMax=True, MinMaxRange=[-200,200],
opacity=0.9, cmap='RdYlBu_r', point_size=0.5,
cbar_label="mm", batch_plot=True, dates_list='Names.txt' , out_folder="Figs_analysis/TS_Figs_NS")
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
C:\Users\Mahmud\anaconda3\envs\kurd\lib\site-packages\akhdefo_functions\AkhdefoPlot.py:1210: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`). Consider using `matplotlib.pyplot.close()`.
fig = plt.figure(figsize=(7,7))
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
Plot East-West Temporal Deformation¶
[10]:
from akhdefo_functions import MeanProducts_plot_ts
MeanProducts_plot_ts(path_to_shapefile="stack_data/TS/TS_EW_20220812_to_20221016_velocity.shp",
dem_path="data/dem_aoi.tif" , color_field="VEL",
Set_fig_MinMax=True, MinMaxRange=[-200,200],
opacity=0.9, cmap='RdYlBu_r', point_size=0.5,
cbar_label="mm", batch_plot=True, dates_list='Names.txt' , out_folder="Figs_analysis/TS_Figs_EW")
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
C:\Users\Mahmud\anaconda3\envs\kurd\lib\site-packages\akhdefo_functions\AkhdefoPlot.py:1210: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`). Consider using `matplotlib.pyplot.close()`.
fig = plt.figure(figsize=(7,7))
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
akhdefo is plotting more than 10 figures to avoid crushing python kernel we skip displaying figures.
Please see figures inside provided out_folder path
[ ]: